body {
    font-family: sans-serif;
    background-color: aliceblue;
    margin: 0;
    padding: 0;
}

main {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

.cart {
    background: lightsteelblue;
    padding: 20px;
    box-shadow:10px rgba(0, 0.1);
    border-radius: 5px;
}

.cart h2 {
    margin-bottom: 20px;
    color: #333;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.cart-item img.cart-item-pic {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 20px;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-details h3 {
    margin: 0;
    font-size: 1.2em;
    color: #333;
}

.cart-item-details p {
    margin: 5px 0;
    color: #888;
}

.cart-item-details label {
    margin-right: 10px;
}

.cart-item-details input[type="number"] {
    width: 60px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-right: 20px;
}

.cart-item-details button.remove-item {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 3px;
    cursor: pointer;
}

.cart-item-details button.remove-item:hover {
    background: #c82333;
}


.cart-total {
    text-align: right;
    margin-top: 20px;
}

.cart-total h3 {
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #333;
}

.cart-total button.checkout {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    border-radius: 3px;
    cursor: pointer;
}

.cart-total button.checkout:hover {
    background: #218838;
}
